fe93012f856bd34169ff27d0b5941ded1c08014c,platform-impl/src/com/intellij/ide/actions/OpenFileAction.java,OpenFileAction,actionPerformed,#AnActionEvent#,44

Before Change


      if (type == null) return;

      String absolutePath = file.getAbsolutePath();
      openFile(absolutePath, project);
    }
  }

After Change



      String absolutePath = file.getAbsolutePath();

      if (project != null) {
        openFile(absolutePath, project);
      } else {
        VirtualFile vfile = LocalFileSystem.getInstance().findFileByIoFile(file);
        if (vfile != null) {